home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _ArrayPush.au3 < prev    next >
Text File  |  2006-06-17  |  710b  |  41 lines

  1. #include <Array.au3>
  2.  
  3.  
  4. ;First Example
  5.  
  6. Dim $test[5],$var[2],$b=5
  7. $test[0]=0
  8. $test[1]=1
  9. $test[2]=2
  10. $test[3]=3
  11. $test[4]=4
  12.  
  13. $var[0]=6
  14. $var[1]=7
  15.  
  16. _ArrayPush($test,$b)
  17. _ArrayDisplay($test,"ArrayUpdate Test") ; The values now are : 1,2,3,4,5
  18.  
  19. _ArrayPush($test,$var)
  20. _ArrayDisplay($test,"ArrayUpdate Test") ; The values now are : 3,4,5,6,7
  21.  
  22. ;Second Example(not working)
  23. Dim $Monitor[5],$Messages=""
  24. While 1
  25.     $msg = GUIGetMsg()
  26.     Select
  27.     Case $msg = $GUI_EVENT_CLOSE
  28.         ExitLoop
  29.     Case $msg = $button
  30.         ;;;;
  31.     EndSelect
  32. _ArrayPush($Monitor,$msg)
  33. WEnd
  34.  
  35.  
  36. For $i = 0 to 4
  37.     $Messages&=$monitor[$i] & ","
  38. Next
  39.  
  40. MsgBox(0,"Monitoring Test"," The last 5 GUI Messages were : " & $Messages)
  41.